home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / turbovis / tvtool17.zip / TEXTF.H < prev    next >
C/C++ Source or Header  |  1993-06-14  |  494b  |  21 lines

  1. /*  Copyright (C) 1993   Marc Stern  (internet: stern@mble.philips.be)  */
  2.  
  3. #if defined( Uses_TStaticTextf) && !defined( __TStaticTextf )
  4. #define __TStaticTextf
  5.  
  6. #include <stdarg.h>
  7. class TStaticTextf : public TStaticText
  8. {
  9.  
  10. public:
  11.  
  12.     TStaticTextf( const TRect& bounds, const char *fmt, ... );
  13.     TStaticTextf( const ushort x, const ushort y, const char *fmt, ... );
  14.  
  15. private:
  16.  
  17.     virtual void init( const char *fmt, va_list arglist );
  18. };
  19.  
  20. #endif  // Uses_TStaticTextf
  21.